PM-5564 - Handle business verification event#192
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the Trolley recipient verification webhook handling so that business-account verification status updates are processed (in addition to individual), addressing cases where business members remain stuck in “Setup Required” and cannot withdraw.
Changes:
- Added
businessas a supportedRecipientVerificationType. - Updated the status update handler to accept both
individualandbusinessverification types (and ignore others).
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
src/api/webhooks/trolley/handlers/recipient-verification.types.ts |
Adds business to the verification type enum so incoming webhook payloads can be typed/recognized. |
src/api/webhooks/trolley/handlers/recipient-verification.handler.ts |
Processes business status updates the same way as individual updates (updates IDV association and reconciles payments). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
36
to
38
| this.logger.log( | ||
| `Handling only individual status updates, ignoring phone verification for recipient ${payload.recipientId}. Verification type: ${payload.type}.`, | ||
| `Handling only individual/business status updates, ignoring phone verification for recipient ${payload.recipientId}. Verification type: ${payload.type}.`, | ||
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
https://topcoder.atlassian.net/browse/PM-5564 Wallet app: Members with Business accounts cannot withdraw payments because ID verification remains in "Setup Required" status.